Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / NotifyCollectionBase<T> Class / AddRange Method
The collection whose items should be added to the end of the collection.


In This Topic
    AddRange Method (NotifyCollectionBase<T>)
    In This Topic
    Adds the items in the specified collection to the end of the collection.
    Syntax
    'Declaration
     
    Public Overridable Sub AddRange( _
       ByVal items As IList(Of T) _
    ) 
    'Usage
     
    Dim instance As NotifyCollectionBase(Of T)
    Dim items As IList(Of T)
     
    instance.AddRange(items)
    public virtual void AddRange( 
       IList<T> items
    )

    Parameters

    items
    The collection whose items should be added to the end of the collection.
    Exceptions
    ExceptionDescription
    The collection is read-only.
    See Also